home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.3 KB | 52 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _DGITMITR_
- #define _DGITMITR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
- interface ODDragItemIterator;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
-
- interface ODStorageUnit;
-
- //=====================================================================================
- // Implementation Types
- //=====================================================================================
-
-
- //=====================================================================================
- // ODDragItemIterator
- //=====================================================================================
-
- interface ODDragItemIterator : ODObject
- {
-
- ODStorageUnit First();
- ODStorageUnit Next();
- ODBoolean IsNotComplete();
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit;
- releaseorder:
- InitDragItemIterator,
- First,
- Next,
- IsNotComplete;
- };
- #endif
- };
-
- #endif // _DGITMITR_
-